home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / clients / xcalc / wc4g < prev    next >
Encoding:
Text File  |  1994-08-12  |  505 b   |  29 lines

  1. #
  2. # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GW extender.
  3. #
  4.  
  5. CFLAGS = -DIEEE -DMSDOS -DSHAPE
  6.  
  7. L = l xaw,xmu,xt,X11,xext,sys
  8.  
  9. all:    xcalc.exe ~\app-defa\xcalc.res
  10.  
  11. xcalc.exe:    wc4g.tag xcalc.obj actions.obj math.obj
  12.     wlink N xcalc.exe f xcalc,actions,math $(L) op st=30k,caseexact
  13.  
  14. .c.obj:
  15.     wcc386 $< $(CFLAGS)
  16.  
  17. ~\app-defa\xcalc.res:    xcalc.ad
  18.     copy xcalc.ad ~\app-defa\xcalc.res
  19.  
  20. wc4g.tag:
  21.     del *.tag
  22.     del *.obj
  23.     del *.map
  24.     del *.exp
  25.     del *.exe
  26.     del *.rsp
  27.     echo >wc4g.tag
  28.  
  29.